POV-Ray : Newsgroups : povray.binaries.animations : snow animations : snow animations Server Time
5 Jul 2024 10:47:47 EDT (-0400)
  snow animations  
From: r20adek
Date: 28 Dec 2005 19:25:01
Message: <web.43b32c06f15ea5a54272d270@news.povray.org>
Who help.I have this source code.

#declare PtA=<-30,0,-30>;
#declare PtB=<30,35,15>;
#declare nasio=seed(12345);

#declare ile=1000;
#declare licz=1;
#declare platek=sphere
{
  <0,0,0>,
  .1 pigment
  { color White }
}

#while
     (licz <ile)
        #declare los=VRand_In_Box(PtA, PtB, nasio);
        object { platek translate los }
        #declare licz=licz+1;
#end
I want snowing animations.What I must write to this code and where becasue
I'm newbie in Povray.
HELP ME.PLEASE


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.